Breaks a piece of text into sentences and returns an array containing the lengths in each sentence.
The request body is of type BreakSentences.
Request Body Parameters
Name | Description | Data Type |
appId | | xml:string |
text | | xml:string |
language | | xml:string |

Overview
 |
 |
Sequence
 |
appId optional xs:string
A string containing "Bearer" + " " + access token.
|
 |
text optional xs:string
A string representing the text to split into sentences. The size of the text must not exceed 10000 characters.
|
 |
language optional xs:string
A string representing the language code of input text.
| | |
The response body is of type BreakSentencesResponse.
An array of integers representing the lengths of the sentences. The length of the array is the enumber of sentences, and the values are the length of each sentence.Response Body Parameters
Name | Description | Data Type |
BreakSentencesResult | | ArrayOfint |

Overview